
body, * {
    font-family: 'Vazir', sans-serif !important;
}

/* بک‌گراند */
.body-bg {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../ویدیووتصویرها/login.jpg');
    background-size: cover;
    background-position: center;
}

/* باکس فرم */
.form-box {
    background: rgba(128, 128, 128, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* تیتر */
.form-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: white;
}

/* فرم */
.form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* لیبل */
.label {
    display: block;
    color: white;
    margin-bottom: 0.25rem;
    margin-left: 30px;

}

/* ورودی‌ها */
.input {
    width: 100%;
    border-radius: 8px;
    left: 25px;
    background: rgba(255, 255, 255, 0.3);
    color: white;
    border: none;
    border-bottom: 2px solid white;
    padding: 0.5rem 2.5rem 0.5rem 0.5rem;
    outline: none;
    transition: border-color 0.3s;
    position: relative;
}

.input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.input:focus {
    border-color: #ec4899; /* صورتی */
}

/* جعبه آیکون */
.relative-box {
    position: relative;
}

.icon {
    position: absolute;
    left: 8px;
    top: 8px;
    color: white;
}

.svg-icon {
    width: 20px;
    height: 20px;
}

/* یادآوری */
.remember {
    display: flex;
    justify-content: space-between;
    color: white;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* چک‌باکس */
.checkbox {
    accent-color: #ec4899;
}

/* دکمه */
.submit-btn {
    width: 100%;
    margin-top: 1rem;
    background: rgba(255, 255, 255, 0.8);
    color: #be185d;
    font-weight: bold;
    padding: 0.5rem;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: white;
}

/* لینک ورود */
.login-link {
    margin-top: 1rem;
    color: white;
    font-size: 0.9rem;
}

.login-link a {
    text-decoration: underline;
    font-weight: bold;
    color: white;
}